From 89f78a718b2eb847c87c4ca6857f45f849ba5ad4 Mon Sep 17 00:00:00 2001 From: Michael Wood Date: Mon, 25 Nov 2013 15:59:41 +0000 Subject: [PATCH] bindings: Fix stray semicolons in CSS example for bindings Semicolon shouldn't be at the end of binding set --- gtk/gtkbindings.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gtk/gtkbindings.c b/gtk/gtkbindings.c index 3c1ab7dde1..c8a2a2d6af 100644 --- a/gtk/gtkbindings.c +++ b/gtk/gtkbindings.c @@ -73,10 +73,10 @@ * { * bind "<Control>Right" { "move-cursor" (visual-positions, 3, 0) }; * bind "<Control>Left" { "move-cursor" (visual-positions, -3, 0) }; - * }; + * } * GtkEntry * { - * gtk-key-bindings: MoveCursor3 + * gtk-key-bindings: MoveCursor3; * } * * @@ -96,10 +96,10 @@ * { * bind "<Control>Right" { }; * bind "<Control>Left" { }; - * }; + * } * GtkEntry * { - * gtk-key-bindings: MoveCursor3 + * gtk-key-bindings: MoveCursor3; * } * * The above example will not have the desired effect of causing @@ -117,10 +117,10 @@ * { * unbind "<Control>Right"; * unbind "<Control>Left"; - * }; + * } * GtkEntry * { - * gtk-key-bindings: MoveCursor3 + * gtk-key-bindings: MoveCursor3; * } * * Now, GTK+ will find a match when looking up "<Control>Right" -- 2.30.2